home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
mint
/
utils
/
agrepsrc.zoo
/
makefile
< prev
next >
Wrap
Makefile
|
1993-03-11
|
700b
|
41 lines
CC = gcc
CFLAGS = -O2 -fstrength-reduce -fomit-frame-pointer
PROG = agrep.ttp
HDRS = agrep.h checkfile.h re.h
OBJS = \
asearch.o \
asearch1.o \
bitap.o \
checkfile.o \
compat.o \
follow.o \
main.o \
maskgen.o \
parse.o \
preprocess.o \
sgrep.o \
mgrep.o \
utilities.o
$(PROG): $(OBJS)
$(CC) $(CFLAGS) -o $@ $(OBJS)
clean:
-rm -f $(OBJS) $(PROG)
asearch.o: agrep.h
asearch1.o: agrep.h
bitap.o: agrep.h
checkfile.o: checkfile.h
follow.o: re.h
main.o: agrep.h checkfile.h
maskgen.o: agrep.h
next.o: agrep.h
parse.o: re.h
preprocess.o: agrep.h
sgrep.o: agrep.h
abm.o: agrep.h
utilities.o: re.h